projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ce0aa05
)
Bind n,p in timer-list
author
Mark Oteiza
<mvoteiza@udel.edu>
Thu, 14 Sep 2017 23:52:09 +0000
(19:52 -0400)
committer
Mark Oteiza
<mvoteiza@udel.edu>
Thu, 14 Sep 2017 23:52:09 +0000
(19:52 -0400)
* lisp/emacs-lisp/timer-list.el (timer-list-mode-map): Bind n and p
to next- and previous-line, respectively.
lisp/emacs-lisp/timer-list.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/timer-list.el
b/lisp/emacs-lisp/timer-list.el
index fb0e98c5b8ee78c0962de46abe38693f6668f33f..5d00fb290f97816e482e848783f35c24d45d180b 100644
(file)
--- a/
lisp/emacs-lisp/timer-list.el
+++ b/
lisp/emacs-lisp/timer-list.el
@@
-81,6
+81,8
@@
(defvar timer-list-mode-map
(let ((map (make-sparse-keymap)))
(define-key map "c" 'timer-list-cancel)
+ (define-key map "n" 'next-line)
+ (define-key map "p" 'previous-line)
(easy-menu-define nil map ""
'("Timers"
["Cancel" timer-list-cancel t]))